home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 165 / XENIATGM165.ISO / cddata / midframe.cxt / 00012_list.swf / scripts / DefineButton2_18 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2003-05-29  |  265 b   |  18 lines

  1. on(release){
  2.    i = 1;
  3.    while(i <= 6)
  4.    {
  5.       if(i != my)
  6.       {
  7.          _parent["c" + i].gotoAndStop(1);
  8.       }
  9.       else
  10.       {
  11.          gotoAndStop(2);
  12.       }
  13.       i++;
  14.    }
  15.    _root.sel = my;
  16.    getURL("event: setitem " + my,"");
  17. }
  18.